####几点纪录的
##私钥导出[多人共用一个 个人帐户开发]
- keychain 左侧 Keys 选择导出
- 导出格式 *.p12 文件
- 然后谁开发谁就导入这个 p12 就好了
Request From
- Request a Certificate From a Certificate Authority
- 记住email 填写 appleid email
- save to disk
##development push
- Provisioning Portal Appid 下 enable Push Notification:
- 上传本地 Request From的证书
- 下载生成的证书 cer
- // 生成 pem 记得 生成 p12 时候记得输入密码 要不不work
// 生成完push证书之后 要renew develop 和 distribution 证书 - openssl pkcs12 -in apns-dev-cert.p12 -out apns-dev-cert.pem -nodes -clcerts
- // 验证 pem
- openssl s_client -connect gateway.sandbox.push.apple.com:2195 -cert apns-dev-cert.pem -debug -showcerts -CAfile apns-dev-cert.pem